home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.bot4life < _root.levellife - _root.levellife / 3)
- {
- _root.nextbot3 = true;
- }
- if(_root.level1._x < -1060)
- {
- this._x = 1000;
- this._visible = false;
- }
- if(_root.levmoveR)
- {
- this._x -= 3;
- }
- if(_root.levmoveL)
- {
- this._x += 3;
- }
- if(_root.jumpR)
- {
- this._x -= 6;
- }
- if(_root.jumpL)
- {
- this._x += 6;
- }
- if(_root.notarget4)
- {
- this._x -= 6;
- }
- if(this._x < 550)
- {
- _root.b4i._visible = true;
- }
- if(this._x < _root.sheep._x + 80)
- {
- _root.hitarea4 = true;
- _root.notarget4 = false;
- }
- if(this._x > _root.sheep._x + 120)
- {
- _root.hitarea4 = false;
- _root.notarget4 = true;
- }
- if(_root.hitarea4)
- {
- if(_root.hit4)
- {
- _root.hit4 = false;
- _root.bot4life -= _root.levelhit;
- if(_root.stronghit)
- {
- _root.bot4life -= 1;
- }
- if(_root.highkick)
- {
- _root.bot4life -= 100;
- _root.highkick = false;
- gotoAndPlay(47);
- }
- gotoAndPlay(21);
- }
- }
- }
-